home *** CD-ROM | disk | FTP | other *** search
/ Kyoko 8203 / Kyoko 8203.iso / mac / link.dxr / 00022_èIóþÅEÉgÉbÉv.ls < prev    next >
Encoding:
Text File  |  2003-02-28  |  391 b   |  30 lines

  1. global page
  2.  
  3. on mouseDown me
  4.   cursor(0)
  5.   page = 1
  6.   mynumber = me.spriteNum
  7.   case mynumber of
  8.     11:
  9.       go(1, "ending")
  10.       updateStage()
  11.     12:
  12.       go(2, "menu")
  13.       updateStage()
  14.     32:
  15.       gotoNetPage("http://myojo.shueisha.co.jp/kyoko8203/")
  16.   end case
  17. end
  18.  
  19. on mouseEnter me
  20.   cursor([1, 2])
  21. end
  22.  
  23. on mouseLeave me
  24.   cursor(0)
  25. end
  26.  
  27. on mouseWithin me
  28.   cursor([1, 2])
  29. end
  30.